QLD fuel

R
25Winter
data: qld_fuel.csv
Published

July 1, 2025

Import data

fuel <- read.csv("../../../../data/qld_fuel.csv")

Install packages

library(dplyr)

Attaching package: 'dplyr'
The following objects are masked from 'package:stats':

    filter, lag
The following objects are masked from 'package:base':

    intersect, setdiff, setequal, union
library(ggplot2)

Fuel Sites

See @weschke_nighttime_2024 for more details

fuel %>%  ggplot(aes(x = Site_Latitude, y = Site_Longitude)) + geom_jitter(aes(colour = Fuel_Type))

@ferretti_ecological_2024